From 6a86b08773e283fd1641a815c88347f86149990b Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Fri, 6 Apr 2007 11:27:36 +0100 Subject: [PATCH] x86: Do not print anything when we fail to emulate an instruction. This is causing the logs to get spammed with uninteresting cases. Signed-off-by: Keir Fraser --- xen/arch/x86/x86_emulate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/x86/x86_emulate.c b/xen/arch/x86/x86_emulate.c index aafaed1ee2..70262d6131 100644 --- a/xen/arch/x86/x86_emulate.c +++ b/xen/arch/x86/x86_emulate.c @@ -2413,7 +2413,7 @@ x86_emulate( goto writeback; cannot_emulate: -#ifdef __XEN__ +#if 0 gdprintk(XENLOG_DEBUG, "Instr:"); for ( ea.mem.off = ctxt->regs->eip; ea.mem.off < _regs.eip; ea.mem.off++ ) { -- 2.30.2